home *** CD-ROM | disk | FTP | other *** search
/ Aminet 35 / Aminet 35 (2000)(Schatztruhe)[!][Feb 2000].iso / Aminet / dev / misc / FlexCat_Demos.lha / FlexCat_Demos / Sources / HSPascal / HelloWorld.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-08-18  |  169 b   |  10 lines

  1. Program HelloWorld;
  2. uses
  3.     Exec , Init_Libs , HelloWorldLocale;
  4. var
  5.     str : STRPTR;
  6. begin
  7.     writeln( GetPasString( MSG_HELLO ) );
  8.     writeln( GetPasString( MSG_BYE ) );
  9. end.
  10.